home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / MacPNG Library 1.02 / pngMacSrc 1.02 / png.1 / ptot / makefile.nt < prev    next >
Encoding:
Makefile  |  1995-08-17  |  620 b   |  39 lines  |  [TEXT/CWIE]

  1. # Makefile for Windows NT (Posix Subsystem)
  2. #
  3.  
  4. !include <ntwin32.mak>
  5.  
  6. cc = cl
  7. link = link
  8.  
  9. .c.obj:
  10.     $(cc) $(cdebug) $(cflags) $(cvars) $(psxvars) $*.c
  11.  
  12. .obj.exe:
  13.     $(link) $(linkdebug) $(psxflags) -out:$*.exe $** $(psxlibs)
  14. #
  15. #
  16.  
  17. all: ptot.exe
  18.  
  19. clean:
  20.     del *.exe *.obj *.bak *.pdb *.tmp
  21.  
  22. ptot.exe: ptot.obj zchunks.obj tempfile.obj tiff.obj crc32.obj inflate.obj
  23.  
  24. mp.exe: mp.obj crc32.obj
  25.  
  26. mp.obj: mp.c ptot.h
  27.  
  28. ptot.obj: ptot.c ptot.h errors.h
  29.  
  30. zchunks.obj: zchunks.c ptot.h errors.h
  31.  
  32. tempfile.obj: tempfile.c ptot.h errors.h
  33.  
  34. tiff.obj: tiff.c ptot.h errors.h
  35.  
  36. crc32.obj: crc32.c
  37.  
  38. inflate.obj: inflate.c inflate.h ptot.h
  39.